From: Julien Grall Date: Mon, 2 Mar 2015 15:54:57 +0000 (+0000) Subject: xen/arm: timer: Don't warn if the timer interrupts are high-level X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3687 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=d4b67cfd8433fa5c515fe9134737c1348758a222;p=xen.git xen/arm: timer: Don't warn if the timer interrupts are high-level The commit 61d6a84 "xen: arm: Warn if timer interrupts are not level triggered" added a check to ensure the timer interrupts are level. Although, the check is only done on low-level interrupts. This will result to a strange warning on platform using high-level ("WARNING [..] IRQ is not level triggered"). As high-level interrupt is valid, don't warn on both high-level and low-level interrupt. Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/arch/arm/time.c b/xen/arch/arm/time.c index 8977cce33b..352e25e786 100644 --- a/xen/arch/arm/time.c +++ b/xen/arch/arm/time.c @@ -217,7 +217,7 @@ static void check_timer_irq_cfg(unsigned int irq, const char *which) * The interrupt controller driver will update desc->arch.type with * the actual type which ended up configured in the hardware. */ - if ( desc->arch.type & DT_IRQ_TYPE_LEVEL_LOW ) + if ( desc->arch.type & DT_IRQ_TYPE_LEVEL_MASK ) return; printk(XENLOG_WARNING